home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / UNIXLIB37B / test / c / envtest < prev    next >
Text File  |  1992-02-10  |  224b  |  15 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. #include "unistd.h"
  5.  
  6. int main()
  7. {
  8. puts(getenv("UnixFS$/tmp"));
  9. puts(getenv("UnixFS$/tmp"));
  10. puts(getenv("TMP"));
  11. putenv("TMP=Hello World");
  12. puts(getenv("TMP"));
  13. puts(getenv("TMP"));
  14. }
  15.